home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form3
- Caption = "File Attribute Changes"
- ClientHeight = 4365
- ClientLeft = 2940
- ClientTop = 2205
- ClientWidth = 4680
- LinkTopic = "Form3"
- ScaleHeight = 4365
- ScaleWidth = 4680
- Begin VB.OptionButton Option8
- Caption = "Sub Archive Only"
- Height = 255
- Left = 120
- TabIndex = 12
- Top = 2760
- Width = 1815
- End
- Begin VB.OptionButton Option7
- Caption = "Add Archive Only"
- Height = 255
- Left = 120
- TabIndex = 11
- Top = 2400
- Width = 1815
- End
- Begin VB.OptionButton Option6
- Caption = "Sub Hidden Only"
- Height = 255
- Left = 120
- TabIndex = 10
- Top = 2040
- Width = 1815
- End
- Begin VB.OptionButton Option5
- Caption = "Add Hidden Only"
- Height = 255
- Left = 120
- TabIndex = 9
- Top = 1680
- Width = 1815
- End
- Begin VB.OptionButton Option4
- Caption = "Sub System Only"
- Height = 255
- Left = 120
- TabIndex = 8
- Top = 1320
- Width = 1815
- End
- Begin VB.OptionButton Option3
- Caption = "Add System Only"
- Height = 255
- Left = 120
- TabIndex = 7
- Top = 960
- Width = 1815
- End
- Begin VB.OptionButton Option2
- Caption = "Sub Read Only"
- Height = 255
- Left = 120
- TabIndex = 6
- Top = 600
- Width = 1815
- End
- Begin VB.OptionButton Option1
- Caption = " Add Read Only"
- Height = 255
- Left = 120
- TabIndex = 5
- Top = 240
- Width = 1815
- End
- Begin VB.CheckBox Check1
- Caption = "Change Attributes"
- Height = 255
- Left = 120
- TabIndex = 4
- Top = 3360
- Value = 1 'Checked
- Width = 1815
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 120
- TabIndex = 3
- Text = "Text1"
- Top = 3960
- Width = 4335
- End
- Begin VB.FileListBox File1
- Height = 1455
- Left = 2160
- TabIndex = 2
- Top = 2280
- Width = 2295
- End
- Begin VB.DirListBox Dir1
- Height = 1440
- Left = 2160
- TabIndex = 1
- Top = 720
- Width = 2295
- End
- Begin VB.DriveListBox Drive1
- Height = 315
- Left = 2160
- TabIndex = 0
- Top = 240
- Width = 2295
- End
- Attribute VB_Name = "Form3"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Dir1_Change()
- 'Dir change box
- File1.Path = Dir1.Path
- End Sub
- Private Sub Drive1_Change()
- ' drive1_Change
- On Error GoTo drv1:
- Dir1.Path = Drive1.Drive
- Exit Sub
- drv1:
- Drive1.Drive = Dir1.Path
- Exit Sub
- End Sub
-